How to Support More Scripting Languages
From Documentation
This documentation is for an older version of ZK. For the latest one, please click here.
Currently ZK supports Java, JavaScript, Ruby and Groovy. However, it is easy to extend:
- Provides a class that implements the Interpreter interface. Instead of implementing it directly, you can derive from the GenericInterpreter class, if you'd like to handle namespaces directly. Or, you can derive from the BSHInterpreter class, if the interpreter supports BSF (Bean Scripting Framework).
- Declares the scripting language in either
WEB-INF/zk.xml
, orzk/config.xml
.
<zscript-config>
<language-name>SuperJava</language-name><!-- case insensitive -->
<interpreter-class>my.MySuperJavaInterpreter</interpreter-class>
</zscript-config>
Refer to the Developer's Reference for the details about WEB-INF/zk.xml
. Refer to the Component Development Guide for the details about zk/config.xml
.